home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / imemory.h < prev    next >
C/C++ Source or Header  |  1995-05-23  |  4KB  |  101 lines

  1. /* Copyright (C) 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* imemory.h */
  20. /* Ghostscript memory allocator extensions for interpreter level */
  21.  
  22. #ifndef imemory_INCLUDED
  23. #  define imemory_INCLUDED
  24.  
  25. #include "ivmspace.h"
  26.  
  27. /*
  28.  * The interpreter level of Ghostscript defines a "subclass" extension
  29.  * of the allocator interface in gsmemory.h, by adding the ability to
  30.  * allocate and free arrays of refs, and by adding the distinction
  31.  * between local, global, and system allocation.
  32.  */
  33.  
  34. #ifndef gs_ref_memory_DEFINED
  35. #  define gs_ref_memory_DEFINED
  36. typedef struct gs_ref_memory_s gs_ref_memory_t;
  37. #endif
  38.  
  39. #include "gsalloc.h"
  40.  
  41.     /* Allocate a ref array. */
  42.  
  43. int gs_alloc_ref_array(P5(gs_ref_memory_t *mem, ref *paref,
  44.   uint attrs, uint num_refs, client_name_t cname));
  45.  
  46.     /* Resize a ref array. */
  47.     /* Currently this is only implemented for shrinking, */
  48.     /* not growing. */
  49.  
  50. int gs_resize_ref_array(P4(gs_ref_memory_t *mem, ref *paref,
  51.   uint new_num_refs, client_name_t cname));
  52.  
  53.     /* Free a ref array. */
  54.  
  55. void gs_free_ref_array(P3(gs_ref_memory_t *mem, ref *paref,
  56.   client_name_t cname));
  57.  
  58.     /* Allocate a string ref. */
  59.  
  60. int gs_alloc_string_ref(P5(gs_ref_memory_t *mem, ref *psref,
  61.   uint attrs, uint nbytes, client_name_t cname));
  62.  
  63. /*
  64.  * Define the pointer type for refs.  Note that if a structure contains refs,
  65.  * both its clear_marks and its reloc_ptrs procedure must unmark them,
  66.  * since the GC will never see the refs during the unmarking sweep.
  67.  */
  68. extern const gs_ptr_procs_t ptr_ref_procs;
  69. #define ptr_ref_type (&ptr_ref_procs)
  70.  
  71. /* Register a ref root. */
  72. /* Note that ref roots are a little peculiar: they assume that */
  73. /* the ref * that they point to points to a *statically* allocated ref. */
  74. #define gs_register_ref_root(mem, root, rp, cname)\
  75.   gs_register_root(mem, root, ptr_ref_type, rp, cname)
  76.  
  77. /*
  78.  * The interpreter allocator can allocate in either local or global VM,
  79.  * and can switch between the two dynamically.  In Level 1 configurations,
  80.  * global VM is the same as local; however, this is *not* currently true in
  81.  * a Level 2 system running in Level 1 mode.  In addition, there is a third
  82.  * VM space, system VM, that exists in both modes and is used for objects
  83.  * that must not be affected by even the outermost save/restore (stack
  84.  * segments and names).
  85.  */
  86. typedef struct gs_dual_memory_s gs_dual_memory_t;
  87. struct gs_dual_memory_s {
  88.     gs_ref_memory_t *current;    /* = ...global or ...local */
  89.     vm_spaces spaces;        /* system, global, local */
  90.     uint current_space;        /* = current->space */
  91.         /* Save/restore machinery */
  92.     int save_level;
  93.         /* Garbage collection hook */
  94.     int (*reclaim)(P2(gs_dual_memory_t *, int));
  95.         /* Masks for store checking, see isave.h. */
  96.     uint test_mask;
  97.     uint new_mask;
  98. };
  99.  
  100. #endif                    /* imemory_INCLUDED */
  101.